home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1994…tember: Reference Library / Dev.CD Sep 94.toast / Periodicals / develop / develop Issue 9 / develop 9 code / NeoTextBox / NeoTextBox.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-06  |  830 b   |  19 lines  |  [TEXT/MPS ]

  1. /*****************************************************************************************
  2.  
  3. NeoTextBox.h - include file for NeoTextBox
  4.  
  5. Written by Bryan K. Ressler (Beaker)
  6.  
  7. *****************************************************************************************/
  8.  
  9. /** DEFINES *****************************************************************************/
  10. #define ntbJustFull            128            /* Full justification */
  11. #define kReturnChar            0x0d        /* Carriage return character */
  12.  
  13. /** MACROS ******************************************************************************/
  14. #define MAXOF(a,b)    (((a) > (b)) ? (a) : (b))
  15.  
  16. /** PUBLIC PROTOTYPES *******************************************************************/
  17. short NeoTextBox(unsigned char *theText, unsigned long textLen, Rect *box,
  18.     short just, short htCode, short *endY, short *lhUsed);
  19.